home *** CD-ROM | disk | FTP | other *** search
-
-
- #ifndef _appwin_h_ /* Fri Sep 16 11:06:53 1994 */
- #define _appwin_h_
-
-
- #include "ui/dialog.h"
- #include "ui/scrolbar.h"
- #include "ui/label.h"
- #include "ui/toglbtn.h"
-
- // ------------------------ Class AppWindow ---------------------------
-
- class AppWindow: public UI_Dialog {
-
- public:
- AppWindow ();
-
- bool HandleChildEvent (const UI_Event& e);
-
- protected:
- UI_ToggleButton* _btn;
- UI_Label* _msg;
- UI_ScrollBar* _bar;
-
- bool _DoScroll ();
-
- };
-
- #endif /* _appwin_h_ */
-